home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / asmbatch.arc / ASM2CREF.BAT < prev    next >
DOS Batch File  |  1986-06-12  |  437b  |  22 lines

  1. echo off
  2. REM Format: ASMCREF filename [options]
  3. if .%1 == . goto nosource
  4. if exist %1 goto bad-ext
  5. if not exist %1.asm goto nofile
  6. masm %1 nul %1 %1 /N%2
  7. if errorlevel 1 goto endall
  8. rem echo Ctrl-C to skip CREF
  9. rem pause
  10. cref %1,%1
  11. erase %1.crf
  12. goto endall
  13. :nosource
  14. echo No source file specified...
  15. goto endall
  16. :bad-ext
  17. echo ".ASM" must NOT be specified
  18. goto endall
  19. :nofile
  20. echo Source file does not exist
  21. :endall
  22.